Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin
/
resources
/
views
/
EmailTemplates
/
Filename :
otp_email_template.blade.php
back
Copy
<!-- otp_email_template.blade.php --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>OTP Email</title> </head> <body style="font-family: Arial, sans-serif; background-color: #f4f4f4; padding: 20px;"> <div style="max-width: 600px; margin: 0 auto; background-color: #fff; border-radius: 10px; overflow: hidden;"> <!-- Header --> <div style="background-color: #3498db; color: #fff; text-align: center; padding: 20px;"> <h2>OTP Verification</h2> </div> <!-- Content --> <div style="padding: 20px;"> <p>Hello,</p> <p>Your verification code is: <strong>{{ $otp }}</strong></p> <p>Please use this code to complete the verification process.</p> <p>If you did not request this verification or have any concerns, please contact our support team immediately.</p> <p>Thank you for choosing Coins For College.</p> </div> <!-- Footer --> <div style="background-color: #3498db; color: #fff; text-align: center; padding: 10px;"> <p>© {{ date('Y') }} Coins For College. All rights reserved.</p> </div> </div> </body> </html>